*{
    margin: 0px;
    padding: 0px;
}
body{
    background-color: cornflowerblue;
    text-align: center;
}
h1{
    color: crimson;
    font-size: 45px;
    margin-top: 15px;
    font-style: italic;
}
.container{
    height: 70vh;
    display: flex;
    justify-content: center;
    margin-top: 3rem;
}
.game{
    height: 55vmin;
    width: 60vmin;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 1vmin;
    margin-top: 25px;
}
.box{
    height: 18vmin;
    width: 18vmin;
    border-radius: 1rem;
    border: none;
    box-shadow: 0 0 1rem rgba(0, 0, 0, 1);
    font-size: 60px;
    font-weight: 700;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    color: maroon;
    background-color: white;
}
#reset-btn, #new-btn{
    padding: 9px;
    font-size: 16px;
    background-color: black;
    color: white;
    border-radius: 0.8rem;
    border: none;
    pointer: cursor
}
#msg{
    color: orangered; 
    font-size: 10vmin; 
}
.msg-container{
    height: 100vmin;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 4rem;
    pointer: cursor;
}
.hide{
    display: none;
}
@media screen and (max-width:600px) {
    .container{
        margin-top: 0.2rem;
        height: 39vh;
    }
    #reset-btn{
        margin-top:-20rem;
    }
    .box{
        font-size: 30px;
    }
    #new-btn{
        margin-top: -2rem;
    }
    .msg-container{
        margin-bottom: 32rem;
    }
}
